-
Notifications
You must be signed in to change notification settings - Fork 775
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
initial type system documentation #914
Conversation
Codecov Report
@@ Coverage Diff @@
## main #914 +/- ##
=======================================
Coverage 94.55% 94.55%
=======================================
Files 302 302
Lines 13682 13682
Branches 12 12
=======================================
Hits 12937 12937
Misses 745 745
Flags with carried forward coverage won't be shown. Click here to find out more. |
Looks good! Now that we have type checking on the |
docs/spec/types.md
Outdated
| `any` | The value can be anything or allows anything. | | ||
| `error` | The expression has an error. | | ||
| `string` | Represents arbitrary text. Equivalent to JSON strings. | | ||
| `number` | **Not yet implemented (#486)** Represents a floating point number or a big integer. Equivalent to the JSON |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GitHub doesn't make the #
a link in docs like this. Can you add the link manually?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Didn't realize that. Will fix...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
Pushed out an update for this. Let me know if that works... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great!
Initial docs for the type system. This fixes #36.